	
#	Charles Young
#	section 1
#	10/27/2022
#	makes it easier for the user to compile and run programs


lab9: mainDriver.c ,getWidth.c, fillFlagArray.c,writeHeader.c,writePixels.c 
	gcc -Wall -o mainDriver.c ,getWidth.c,fillFlagArray.c,writeHeader.c,writePixels.c

#run has a dependency: lab8
#lab9 comes from the first line, the compilation 

run: lab9
		./lab9

clean: 
		rm lab9
		rm -f output.txt
